home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 January - Disc 2
/
Macworld (1999-01) (Disk 2).dmg
/
Serious Demos
/
Symbolic Composer 4.2
/
Environment
/
System
/
CADAR
/
Permutate
/
reorder-by-n
< prev
next >
Wrap
Lisp/Scheme
|
1998-10-22
|
228b
|
13 lines
reorder-by-n n material
repeats the material n times and then picks every n note.
(setq material (list-a-scale 'a 7))
->(A B C D E F G)
(reorder-by-n 5 material)
->(A F D B G E C)
(reorder-by-n 4 material)
->(A E B F C G D)